home *** CD-ROM | disk | FTP | other *** search
/ Tripas 2 / TRIPAS 002.iso / RRRA.exe / COOTPLAY.CON < prev    next >
Encoding:
Text File  |  1998-07-02  |  629 b   |  38 lines

  1. // The Coot jamming away  
  2. // Programmed by Joseph Aurili
  3.  
  4. // Define actions
  5. action ACOOTPLAY_PLAY  0   5   1  1  20
  6.  
  7. // Define movements
  8. move COOTPLAY_STOP
  9.  
  10. // Define AI states
  11. ai AICOOTPLAY_PLAY ACOOTPLAY_PLAY COOTPLAY_STOP faceplayer   
  12.  
  13. // Actors ********************************************
  14. actor COOTPLAY 10000 ACOOTPLAY_PLAY
  15.   fall
  16.   garybanjo
  17.  
  18.   // Start and stay with play
  19.   ifai 0
  20.   {
  21.     cstator 257
  22.     ai AICOOTPLAY_PLAY
  23.   }
  24.   
  25.   // Coot takes a hit
  26.   ifhitweapon
  27.   {
  28.     state random_wall_jibs
  29.     spawn BLOOD
  30.     ifrnd 64
  31.     {
  32.       sound CT_PAIN
  33.       break;
  34.     }
  35.   }
  36. enda
  37.  
  38.